home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / pppconfig.postinst < prev    next >
Text File  |  2009-02-20  |  418b  |  18 lines

  1. #!/bin/sh
  2.  
  3. # Postinst for pppconfig by John Hasler 1999-2005
  4. # Any possessor of a copy of this program may treat it as if it
  5. # were in the public domain.  I waive all rights.
  6.  
  7. set -e
  8.  
  9. if [ -x /usr/bin/update-menus ] ; then
  10.     /usr/bin/update-menus
  11. fi
  12. if dpkg --compare-versions "$2" lt "2.3.18ubuntu2"; then
  13.     update-rc.d -f dns-clean remove >/dev/null
  14. fi
  15. update-rc.d dns-clean start 70 1 2 3 4 5 . >/dev/null
  16.  
  17. exit 0
  18.